home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Outlook Express 1.xpl < prev    next >
Text File  |  2001-05-14  |  3KB  |  97 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="3"
  4. "UIPATH"="Internet\Outlook Express\Appearance"
  5. "NAME"="Advanced Options"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="2.15"
  8. "TEXT 1"="Display Splash Screen"
  9. "TEXT 2"="Display "Tools" -> "New Hotmail account" inside menu"
  10. "TEXT 3"="Enable colorful message backgrounds"
  11. "DESCRIPTION 1"="Miscellaneous settings for Outlook Express."
  12. "DESCRIPTION 2"="To use option #3: Activate it, then restart Outlook Express, create a new message and press CTRL+SHIFT plus the "Z" key to cycle throught the backgrounds."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Thanks to Chris [CGMT@flashmail.com] for the "non-NT but not disabled" bug notice."
  17. "COMMENT 2"="Thanks to Guy for the "no-go OE5" bug notice."
  18.  
  19.  
  20. sValPath=""
  21. sP1="HKCU\Software\Microsoft\Outlook Express\"
  22. sP2="HKCU\Identities\Last User ID"
  23. 'sPath="HKCU\Software\Microsoft\Outlook Express\"
  24. sNOS="NoSplash"
  25. sHOT="Disable Hotmail"
  26.  
  27. sPath2="HKCU\Software\Microsoft\Internet Mail and News\"
  28. sCOL="ColorCycle"
  29.  
  30.  
  31. Sub Plugin_Initialize 
  32.  'OK, let's have a look if we are running IE5...
  33.  s=RegReadValue(sP2)
  34.  if IsEmpty(s)=false then
  35.     'OK - we have a value - check if we can find OE
  36.     sValPath="HKCU\Identities\" & s & "\Software\Microsoft\Outlook Express\5.0\"
  37.     If RegPathExists(sValPath) then
  38.        'OE5 !
  39.        sValPath=sValPath '& sValue
  40.     else
  41.        sValPath=sP1 '& sValue
  42.     end if 
  43.  else
  44.     sValPath=sP1 '& sValue
  45.  end if
  46.  
  47.  
  48.  i=RegReadValue(sValPath & sNOS)
  49.  if i=0 or IsEmpty(i) then
  50.     Call SetUIElement(1,True)
  51.  end if
  52.  
  53.  i=RegReadValue(sValPath & sHOT)
  54.  if i=0 or IsEmpty(i) then
  55.     Call SetUIElement(2,True)
  56.  end if
  57.  
  58.  i=RegReadValue(sPath2 & sCOL)
  59.  if i=1 then
  60.     Call SetUIElement(3,True)
  61.  end if
  62.  
  63. End Sub
  64.  
  65. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  66.  i=GetUIElement(1)
  67.  if i=true then
  68.     Call RegWriteValue(sValPath & sNOS,0,2)
  69.  else
  70.     Call RegWriteValue(sValPath & sNOS,1,2)
  71.  end if
  72.  
  73.  i=GetUIElement(2)
  74.  if i=true then
  75.     s=RegReadValue(sValPath & sHOT)
  76.     if IsEmpty(s)=false then 
  77.        'entry exists -> delete it!
  78.        Call RegDeleteValue(sValPath & sHOT)
  79.     end if    
  80.     'Call RegWriteValue(sValPath & sHOT,0,2)
  81.  else
  82.     Call RegWriteValue(sValPath & sHOT,1,2)
  83.  end if
  84.  
  85.  
  86.  i=GetUIElement(3)
  87.  if i=true then
  88.     Call RegWriteValue(sPath2 & sCOL,1,1)
  89.  else
  90.     Call RegWriteValue(sPath2 & sCOL,0,1)
  91.  end if
  92.  
  93. end Sub
  94.  
  95. Sub Plugin_Terminate 
  96. End Sub
  97.